home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.92 / crossfir / crossfire-0.92.5 / include / living.h < prev    next >
C/C++ Source or Header  |  1996-07-24  |  2KB  |  54 lines

  1. /*
  2.  * static char *rcsid_living_h =
  3.  *   "$Id: living.h,v 1.16 1996/07/24 07:15:27 master Exp master $";
  4.  */
  5.  
  6. /*
  7.     CrossFire, A Multiplayer game for X-windows
  8.  
  9.     Copyright (C) 1992 Frank Tore Johansen
  10.  
  11.     This program is free software; you can redistribute it and/or modify
  12.     it under the terms of the GNU General Public License as published by
  13.     the Free Software Foundation; either version 2 of the License, or
  14.     (at your option) any later version.
  15.  
  16.     This program is distributed in the hope that it will be useful,
  17.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.     GNU General Public License for more details.
  20.  
  21.     You should have received a copy of the GNU General Public License
  22.     along with this program; if not, write to the Free Software
  23.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  
  25.     The author can be reached via e-mail to frankj@ifi.uio.no.
  26. */
  27.  
  28. #define STR 0
  29. #define DEX 1
  30. #define CON 2
  31. #define WIS 3
  32. #define CHA 4
  33. #define INT 5
  34. #define POW 6
  35.  
  36. #define NO_STAT 99    /* needed by skills code -b.t. */
  37.  
  38. extern char *attacks[NROFATTACKS];
  39.  
  40. extern int cha_bonus[MAX_STAT + 1];
  41. extern int dex_bonus[MAX_STAT + 1];
  42. extern int thaco_bonus[MAX_STAT + 1];
  43. extern int turn_bonus[MAX_STAT + 1];
  44. extern int max_carry[MAX_STAT + 1];
  45. extern int dam_bonus[MAX_STAT + 1];
  46. extern int savethrow[101];
  47. extern int turn_bonus[MAX_STAT + 1];
  48. extern int object_saves[NROFATTACKS][NROFMATERIALS];
  49. extern int learn_spell[];
  50. extern char *restore_msg[7];
  51. extern char *statname[7];
  52. extern char *short_stat_name[7];
  53. extern char *lose_msg[7];
  54.